home *** CD-ROM | disk | FTP | other *** search
-
- // gfxmodes.cpp
- //
- // Copyright (c) 1995 by Toshiaki Tsuji, all rights reserved.
-
- #include "stdgfx.h"
- #include "gfxmodes.h"
-
- MODEINFO ModeTable[SUPPORTED_MODE] =
- {
- /* M80x25x16 */ { 0x03, 80, 25, 4, FALSE },
- /* M320x200x256 */ { 0x13, 320, 200, 8, FALSE },
- /* M640x400x256 */ { 0x100, 640, 400, 8, TRUE },
- /* M640x480x256 */ { 0x101, 640, 480, 8, TRUE },
- /* M800x600x256 */ { 0x103, 800, 600, 8, TRUE },
- /* M1024x768x256 */ { 0x105, 1024, 768, 8, TRUE }
- }; // End of ModeTable
-
-